home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Animacje, filmy i prezentacje / Odtwarzacze filmow / JahPlayer 0.1.0 / jahplayer-0.1.0-installer.exe / openlibraries-0.3.0-runtime.exe / shaders / passthrough.vert < prev    next >
Text File  |  2006-02-05  |  336b  |  16 lines

  1.  
  2. // fx - A compositing library representation.
  3.  
  4. // Copyright (C) 2005-2006 Visual Media FX Ltd.
  5. // Released under the LGPL.
  6. // For more information, see http://www.openlibraries.org.
  7.  
  8. varying vec2 v_tex;
  9.  
  10. void main( void )
  11. {
  12.     v_tex = vec2( gl_MultiTexCoord0 );
  13.  
  14.     gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
  15. }
  16.